d1f684fa1350f5faeee01f165dffd98b426998ad,NightgamesMod/nightgames/skills/Dive.java,Dive,resolve,#Combat#Character#,38
Before Change
c.setStance(new StandingOver(target, getSelf()), target, true);
if (getSelf().human()) {
c.write(getSelf(), deal(c, 0, Result.normal, target));
if (((Player)getSelf()).checkAddiction(AddictionType.MIND_CONTROL, target)) {
((Player)getSelf()).unaddictCombat(AddictionType.MIND_CONTROL,
target, Addiction.LOW_INCREASE, c);
c.write(getSelf(), "Acting submissively voluntarily reduces Mara's control over you.");
}
After Change
c.write(getSelf(), receive(c, 0, Result.normal, target));
}
if (getSelf().checkAddiction(AddictionType.MIND_CONTROL, target)) {
getSelf().unaddictCombat(AddictionType.MIND_CONTROL,
target, Addiction.LOW_INCREASE, c);
c.write(getSelf(), "Acting submissively voluntarily reduces Mara's control over " + getSelf().nameDirectObject());
}